{% extends 'base.html' %} {% block head_title %}New password{% endblock head_title %} {% block content %}

Change password

{% if validlink %}
{% csrf_token %}
{{ form.new_password1.label_tag }} {% if form.new_password1.errors %}
{{ form.new_password1.errors }}
{% endif %}
{{ form.new_password2.label_tag }} {% if form.new_password2.errors %}
{{ form.new_password2.errors }}
{% endif %}
{% else %}

The password reset link was not valid, possibly because it has already been used, please request a new password reset.

{% endif %}
{% endblock content %}